385a99ccfdf487c78a0ff7a60cd1043110c16c18,src/husacct/analyse/task/analyser/java/BlockAnalyser.java,BlockAnalyser,analyseStatement,#StatementContext#,59
Before Change
}
}
if ((statement.statementExpression() != null) && (statement.statementExpression().expression() != null)) {
analyseExpression(statement.statementExpression().expression());
}
if ((statement.parExpression() != null) && (statement.parExpression().expression() != null)) {
analyseExpression(statement.parExpression().expression());
After Change
}
}
if ((statement.statementExpression() != null) && (statement.statementExpression().expression() != null)) {
new ExpressionAnalyser(belongsToClass, belongsToMethod, statement.statementExpression().expression());
}
if ((statement.parExpression() != null) && (statement.parExpression().expression() != null)) {
new ExpressionAnalyser(belongsToClass, belongsToMethod, statement.parExpression().expression());